home *** CD-ROM | disk | FTP | other *** search
/ Freaks Macintosh Archive / Freaks Macintosh Archive.bin / Freaks Macintosh Archives / Ham⁄GPS / Virtuoso1.4 Folder / Virtuoso 1.4 / Scripts / ShutDown next >
Text File  |  1991-07-12  |  593b  |  15 lines

  1. ;Shutdown script:  Automatically executed when you quit Virtuoso.
  2. ;The commands contained here are for a Kantronics TNC.
  3. ;Make sure TNC is in command mode, send a control-C character.
  4. TYPE("^C")
  5. ;Set TNC in channel A and send a Return character for good measure.
  6. TYPE("|A^M")
  7. ;Change the CTEXT contents so people connecting know I'm not here
  8. TYPE("CTEXT I'm not at the keyboard right now.  Please leave a message in my PBBS. 73-Jim^M")
  9. ;When people connect, send them to my PBBS
  10. TYPE("CMSG PBBS^M")
  11. ;Turn monitoring off.
  12. TYPE("MONITOR OFF^M")
  13. ;Send the XOFF Character Control-S
  14. TYPE("^S")
  15. END.